debug

open fun debug(message: String)

Logs a DEBUG message.

Parameters

message

the message to log


open fun debug(message: String, exception: Throwable)

Logs a DEBUG message with the given exception.

Parameters

message

the message to log

exception

the Throwable associated with the log message


open fun debug(msgSupplier: Supplier<String>)

Logs a lazily constructed DEBUG message.

Parameters

msgSupplier

a function, which when called, produces the desired log message


open fun debug(message: String, arguments: Array<Any>)

Logs a DEBUG message with the given arguments.

Parameters

message

the message to log

arguments

the array of arguments to the message


open fun debug(message: String, parameterSupplier: Supplier<String>)

Logs an ERROR message with a given lazy calculated parameter.

Parameters

message

the message to log

parameterSupplier

a function, which when called, produces the desired log message parameter